home *** CD-ROM | disk | FTP | other *** search
- /*
- ListController.h - Copyright (c) 1992 NeXT Computer, Inc.
-
- You may freely copy, distribute and reuse the code in this example.
- NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied,
- as to its fitness for any particular use.
- */
-
- #import <appkit/appkit.h>
-
- @interface ListController:Object
- {
- id commentVector;
- id doneVector;
- id priorityVector;
- id tableView;
- id doneObj;
- id window;
- id _theStore;
- id _records;
- unsigned _theHandle;
- char *_theDate;
- id dailyBread;
- }
-
- - initForDateString:(const char *)theDate andRecordManager:theRM;
- - windowWillClose:sender;
- - orderUp:sender;
- - saveTheRecord:sender;
- - (char *)theDate;
- - finishItem:sender;
-
- - (unsigned int)rowCount;
- - getValueFor:identifier at:(unsigned int) aPosition into:aValue;
- - setValueFor:identifier at:(unsigned int) aPosition from:aValue;
- - pullUndoneForward:sender;
-
- @end
-